home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / _archvrs / unix / compress.lha / compress.c < prev    next >
C/C++ Source or Header  |  1988-09-06  |  44KB  |  1,716 lines

  1. /* 
  2.  * Compress - data compression program 
  3.  */
  4. #define min(a,b)    ((a>b) ? b : a)
  5.  
  6. /*
  7.  * machine variants which require cc -Dmachine:     pdp11, z8000, pcxt
  8.  */
  9.  
  10. /*
  11.  * Set USERMEM to the maximum amount of physical user memory available
  12.  * in bytes.  USERMEM is used to determine the maximum BITS that can be used
  13.  * for compression.
  14.  *
  15.  * SACREDMEM is the amount of physical memory saved for others; compress
  16.  * will hog the rest.
  17.  */
  18. #ifndef SACREDMEM
  19. #define SACREDMEM    0
  20. #endif
  21.  
  22. #ifndef USERMEM
  23. # define USERMEM    450000    /* default user memory */
  24. #endif
  25.  
  26. #ifdef interdata        /* (Perkin-Elmer) */
  27. #define SIGNED_COMPARE_SLOW    /* signed compare is slower than unsigned */
  28. #endif
  29.  
  30. #ifdef pdp11
  31. # define BITS    12    /* max bits/code for 16-bit machine */
  32. # define NO_UCHAR    /* also if "unsigned char" functions as signed char */
  33. # undef USERMEM 
  34. #endif /* pdp11 */    /* don't forget to compile with -i */
  35.  
  36. #ifdef z8000
  37. # define BITS    12
  38. # undef vax        /* weird preprocessor */
  39. # undef USERMEM 
  40. #endif /* z8000 */
  41.  
  42. #ifdef MSDOS        /* Microsoft C 3.0 for MS-DOS */
  43. # undef USERMEM
  44. # ifdef BIG        /* then this is a large data compilation */
  45. #  undef DEBUG        /*  DEBUG makes the executible too big */
  46. #  define BITS     16
  47. #  define XENIX_16
  48. # else            /* this is a small model compilation */
  49. #  define BITS     12
  50. # endif
  51. #else
  52. #undef BIG
  53. #endif /* MSDOS */
  54.  
  55. #ifdef pcxt
  56. # define BITS    12
  57. # undef USERMEM
  58. #endif /* pcxt */
  59.  
  60. #ifdef USERMEM
  61. # if USERMEM >= (433484+SACREDMEM)
  62. #  define PBITS 16
  63. # else
  64. #  if USERMEM >= (229600+SACREDMEM)
  65. #   define PBITS    15
  66. #  else
  67. #   if USERMEM >= (127536+SACREDMEM)
  68. #    define PBITS    14
  69. #   else
  70. #    if USERMEM >= (73464+SACREDMEM)
  71. #     define PBITS    13
  72. #    else
  73. #     define PBITS    12
  74. #    endif
  75. #   endif
  76. #  endif
  77. # endif
  78. # undef USERMEM
  79. #endif /* USERMEM */
  80.  
  81. #ifdef PBITS        /* Preferred BITS for this memory size */
  82. # ifndef BITS
  83. #  define BITS PBITS
  84. # endif BITS
  85. #endif /* PBITS */
  86.  
  87. #if BITS == 16
  88. # define HSIZE    69001        /* 95% occupancy */
  89. #endif
  90. #if BITS == 15
  91. # define HSIZE    35023        /* 94% occupancy */
  92. #endif
  93. #if BITS == 14
  94. # define HSIZE    18013        /* 91% occupancy */
  95. #endif
  96. #if BITS == 13
  97. # define HSIZE    9001        /* 91% occupancy */
  98. #endif
  99. #if BITS <= 12
  100. # define HSIZE    5003        /* 80% occupancy */
  101. #endif
  102.  
  103. #ifdef M_XENIX            /* Stupid compiler can't handle arrays with */
  104. # if BITS == 16            /* more than 65535 bytes - so we fake it */
  105. #  define XENIX_16
  106. # else
  107. #  if BITS > 13            /* Code only handles BITS = 12, 13, or 16 */
  108. #   define BITS 13
  109. #  endif
  110. # endif
  111. #endif
  112.  
  113. /*
  114.  * a code_int must be able to hold 2**BITS values of type int, and also -1
  115.  */
  116. #if BITS > 15
  117. typedef long int    code_int;
  118. #else
  119. typedef int        code_int;
  120. #endif
  121.  
  122. #ifdef SIGNED_COMPARE_SLOW
  123. typedef unsigned long int count_int;
  124. typedef unsigned short int count_short;
  125. #else
  126. typedef long int      count_int;
  127. #endif
  128.  
  129. #ifdef NO_UCHAR
  130.  typedef char    char_type;
  131. #else
  132.  typedef    unsigned char    char_type;
  133. #endif /* UCHAR */
  134. char_type magic_header[] = { "\037\235" };    /* 1F 9D */
  135.  
  136. /* Defines for third byte of header */
  137. #define BIT_MASK    0x1f
  138. #define BLOCK_MASK    0x80
  139. /* Masks 0x40 and 0x20 are free.  I think 0x20 should mean that there is
  140.    a fourth header byte (for expansion).
  141. */
  142. #define INIT_BITS 9            /* initial number of bits/code */
  143.  
  144. /*
  145.  * compress.c - File compression ala IEEE Computer, June 1984.
  146.  *
  147.  * Authors:    Spencer W. Thomas    (decvax!harpo!utah-cs!utah-gr!thomas)
  148.  *        Jim McKie        (decvax!mcvax!jim)
  149.  *        Steve Davies        (decvax!vax135!petsd!peora!srd)
  150.  *        Ken Turkowski        (decvax!decwrl!turtlevax!ken)
  151.  *        James A. Woods        (decvax!ihnp4!ames!jaw)
  152.  *        Joe Orost        (decvax!vax135!petsd!joe)
  153.  *
  154.  * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $
  155.  * $Log:    compress.c,v $
  156.  * Revision 4.0.1  87/11/27  21:45:00  rms (Richard Stallman)
  157.  * Once copystat has run, don't delete output file on interrupt.
  158.  * Mention more flags in the Usage string.
  159.  *
  160.  * Revision 4.0     85/07/30  12:50:00  joe
  161.  * Removed ferror() calls in output routine on every output except first.
  162.  * Prepared for release to the world.
  163.  * 
  164.  * Revision 3.6     85/07/04  01:22:21  joe
  165.  * Remove much wasted storage by overlaying hash table with the tables
  166.  * used by decompress: tab_suffix[1<<BITS], stack[8000].  Updated USERMEM
  167.  * computations.  Fixed dump_tab() DEBUG routine.
  168.  *
  169.  * Revision 3.5     85/06/30  20:47:21  jaw
  170.  * Change hash function to use exclusive-or.  Rip out hash cache.  These
  171.  * speedups render the megamemory version defunct, for now.  Make decoder
  172.  * stack global.  Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.
  173.  *
  174.  * Revision 3.4     85/06/27  12:00:00  ken
  175.  * Get rid of all floating-point calculations by doing all compression ratio
  176.  * calculations in fixed point.
  177.  *
  178.  * Revision 3.3     85/06/24  21:53:24  joe
  179.  * Incorporate portability suggestion for M_XENIX.  Got rid of text on #else
  180.  * and #endif lines.  Cleaned up #ifdefs for vax and interdata.
  181.  *
  182.  * Revision 3.2     85/06/06  21:53:24  jaw
  183.  * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.
  184.  * Default to "quiet" output (no compression statistics).
  185.  *
  186.  * Revision 3.1     85/05/12  18:56:13  jaw
  187.  * Integrate decompress() stack speedups (from early pointer mods by McKie).
  188.  * Repair multi-file USERMEM gaffe.  Unify 'force' flags to mimic semantics
  189.  * of SVR2 'pack'.  Streamline block-compress table clear logic.  Increase 
  190.  * output byte count by magic number size.
  191.  * 
  192.  * Revision 3.0      84/11/27  11:50:00  petsd!joe
  193.  * Set HSIZE depending on BITS.     Set BITS depending on USERMEM.     Unrolled
  194.  * loops in clear routines.  Added "-C" flag for 2.0 compatibility.  Used
  195.  * unsigned compares on Perkin-Elmer.  Fixed foreground check.
  196.  *
  197.  * Revision 2.7      84/11/16  19:35:39  ames!jaw
  198.  * Cache common hash codes based on input statistics; this improves
  199.  * performance for low-density raster images.  Pass on #ifdef bundle
  200.  * from Turkowski.
  201.  *
  202.  * Revision 2.6      84/11/05  19:18:21  ames!jaw
  203.  * Vary size of hash tables to reduce time for small files.
  204.  * Tune PDP-11 hash function.
  205.  *
  206.  * Revision 2.5      84/10/30  20:15:14  ames!jaw
  207.  * Junk chaining; replace with the simpler (and, on the VAX, faster)
  208.  * double hashing, discussed within.  Make block compression standard.
  209.  *
  210.  * Revision 2.4      84/10/16  11:11:11  ames!jaw
  211.  * Introduce adaptive reset for block compression, to boost the rate
  212.  * another several percent.  (See mailing list notes.)
  213.  *
  214.  * Revision 2.3      84/09/22  22:00:00  petsd!joe
  215.  * Implemented "-B" block compress.  Implemented REVERSE sorting of tab_next.
  216.  * Bug fix for last bits.  Changed fwrite to putchar loop everywhere.
  217.  *
  218.  * Revision 2.2      84/09/18  14:12:21  ames!jaw
  219.  * Fold in news changes, small machine typedef from thomas,
  220.  * #ifdef interdata from joe.
  221.  *
  222.  * Revision 2.1      84/09/10  12:34:56  ames!jaw
  223.  * Configured fast table lookup for 32-bit machines.
  224.  * This cuts user time in half for b <= FBITS, and is useful for news batching
  225.  * from VAX to PDP sites.  Also sped up decompress() [fwrite->putc] and
  226.  * added signal catcher [plus beef in writeerr()] to delete effluvia.
  227.  *
  228.  * Revision 2.0      84/08/28  22:00:00  petsd!joe
  229.  * Add check for foreground before prompting user.  Insert maxbits into
  230.  * compressed file.  Force file being uncompressed to end with ".Z".
  231.  * Added "-c" flag and "zcat".    Prepared for release.
  232.  *
  233.  * Revision 1.10  84/08/24  18:28:00  turtlevax!ken
  234.  * Will only compress regular files (no directories), added a magic number
  235.  * header (plus an undocumented -n flag to handle old files without headers),
  236.  * added -f flag to force overwriting of possibly existing destination file,
  237.  * otherwise the user is prompted for a response.  Will tack on a .Z to a
  238.  * filename if it doesn't have one when decompressing.    Will only replace
  239.  * file if it was compressed.
  240.  *
  241.  * Revision 1.9     84/08/16  17:28:00  turtlevax!ken
  242.  * Removed scanargs(), getopt(), added .Z extension and unlimited number of
  243.  * filenames to compress.  Flags may be clustered (-Ddvb12) or separated
  244.  * (-D -d -v -b 12), or combination thereof.  Modes and other status is
  245.  * copied with copystat().  -O bug for 4.2 seems to have disappeared with
  246.  * 1.8.
  247.  *
  248.  * Revision 1.8     84/08/09  23:15:00  joe
  249.  * Made it compatible with vax version, installed jim's fixes/enhancements
  250.  *
  251.  * Revision 1.6     84/08/01  22:08:00  joe
  252.  * Sped up algorithm significantly by sorting the compress chain.
  253.  *
  254.  * Revision 1.5     84/07/13  13:11:00  srd
  255.  * Added C version of vax asm routines.     Changed structure to arrays to
  256.  * save much memory.  Do unsigned compares where possible (faster on
  257.  * Perkin-Elmer)
  258.  *
  259.  * Revision 1.4     84/07/05  03:11:11  thomas
  260.  * Clean up the code a little and lint it.  (Lint complains about all
  261.  * the regs used in the asm, but I'm not going to "fix" this.)
  262.  *
  263.  * Revision 1.3     84/07/05  02:06:54  thomas
  264.  * Minor fixes.
  265.  *
  266.  * Revision 1.2     84/07/05  00:27:27  thomas
  267.  * Add variable bit length output.
  268.  *
  269.  */
  270. static char rcs_ident[] = "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
  271.  
  272. #include <stdio.h>
  273. #include <ctype.h>
  274. #include <signal.h>
  275. #include <sys/types.h>
  276. #include <sys/stat.h>
  277.  
  278. #ifdef MSDOS
  279. #include <stdlib.h>
  280. #endif
  281.  
  282. #define ARGVAL() (*++(*argv) || (--argc && *++argv))
  283.  
  284. int n_bits;                /* number of bits/code */
  285. int maxbits = BITS;            /* user settable max # bits/code */
  286. code_int maxcode;            /* maximum code, given n_bits */
  287. code_int maxmaxcode = (code_int)1 << BITS; /* should NEVER generate this code */
  288. #ifdef COMPATIBLE        /* But wrong! */
  289. # define MAXCODE(n_bits)    ((code_int) 1 << (n_bits) - 1)
  290. #else
  291. # define MAXCODE(n_bits)    (((code_int) 1 << (n_bits)) - 1)
  292. #endif /* COMPATIBLE */
  293.  
  294. #ifdef XENIX_16
  295. # ifdef MSDOS
  296.  
  297. count_int far htab0[8192];
  298. count_int far htab1[8192];
  299. count_int far htab2[8192];
  300. count_int far htab3[8192];
  301. count_int far htab4[8192];
  302. count_int far htab5[8192];
  303. count_int far htab6[8192];
  304. count_int far htab7[8192];
  305. count_int far htab8[HSIZE-65536];
  306. count_int far * htab[9] = {
  307.     htab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };
  308.  
  309. unsigned short far code0tab[16384];
  310. unsigned short far code1tab[16384];
  311. unsigned short far code2tab[16384];
  312. unsigned short far code3tab[16384];
  313. unsigned short far code4tab[16384];
  314. unsigned short far * codetab[5] = {
  315.     code0tab, code1tab, code2tab, code3tab, code4tab };
  316.  
  317. # else
  318.  
  319. count_int htab0[8192];
  320. count_int htab1[8192];
  321. count_int htab2[8192];
  322. count_int htab3[8192];
  323. count_int htab4[8192];
  324. count_int htab5[8192];
  325. count_int htab6[8192];
  326. count_int htab7[8192];
  327. count_int htab8[HSIZE-65536];
  328. count_int * htab[9] = {
  329.     htab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };
  330.  
  331. unsigned short code0tab[16384];
  332. unsigned short code1tab[16384];
  333. unsigned short code2tab[16384];
  334. unsigned short code3tab[16384];
  335. unsigned short code4tab[16384];
  336. unsigned short * codetab[5] = {
  337.     code0tab, code1tab, code2tab, code3tab, code4tab };
  338.  
  339. # endif /* MSDOS */
  340.  
  341. #define htabof(i)    (htab[(i) >> 13][(i) & 0x1fff])
  342. #define codetabof(i)    (codetab[(i) >> 14][(i) & 0x3fff])
  343.  
  344. #else    /* Normal machine */
  345. count_int htab [HSIZE];
  346. unsigned short codetab [HSIZE];
  347. #define htabof(i)    htab[i]
  348. #define codetabof(i)    codetab[i]
  349.  
  350. #endif    /* XENIX_16 */
  351. code_int hsize = HSIZE;            /* for dynamic table sizing */
  352. count_int fsize;
  353.  
  354. /*
  355.  * To save much memory, we overlay the table used by compress() with those
  356.  * used by decompress().  The tab_prefix table is the same size and type
  357.  * as the codetab.  The tab_suffix table needs 2**BITS characters.  We
  358.  * get this from the beginning of htab.     The output stack uses the rest
  359.  * of htab, and contains characters.  There is plenty of room for any
  360.  * possible stack (stack used to be 8000 characters).
  361.  */
  362.  
  363. #define tab_prefixof(i) codetabof(i)
  364.  
  365. #ifdef XENIX_16
  366. # ifdef MSDOS
  367. #  define tab_suffixof(i)    ((char_type far *)htab[(i)>>15])[(i) & 0x7fff]
  368. #  define de_stack        ((char_type far *)(htab2))
  369. # else
  370. #  define tab_suffixof(i)    ((char_type *)htab[(i)>>15])[(i) & 0x7fff]
  371. #  define de_stack        ((char_type *)(htab2))
  372. # endif /* MSDOS */
  373. #else    /* Normal machine */
  374. # define tab_suffixof(i)    ((char_type *)(htab))[i]
  375. # define de_stack        ((char_type *)&tab_suffixof((code_int)1<<BITS))
  376. #endif    /* XENIX_16 */
  377.  
  378. code_int free_ent = 0;            /* first unused entry */
  379. int exit_stat = 0;
  380.  
  381. code_int getcode();
  382.  
  383. Usage() {
  384. #ifdef DEBUG
  385.  
  386. # ifdef MSDOS
  387.     fprintf(stderr,"Usage: compress [-cdDfivV] [-b maxbits] [file ...]\n");
  388. # else
  389.     fprintf(stderr,"Usage: compress [-cdDfvV] [-b maxbits] [file ...]\n");
  390. # endif /* MSDOS */
  391.  
  392. }
  393. int debug = 0;
  394. #else
  395.      
  396. # ifdef MSDOS
  397.     fprintf(stderr,"Usage: compress [-cdfivV] [-b maxbits] [file ...]\n");
  398. # else
  399.     fprintf(stderr,"Usage: compress [-cdfvV] [-b maxbits] [file ...]\n");
  400. # endif /* MSDOS */
  401.  
  402. }
  403. #endif /* DEBUG */
  404. int nomagic = 0;    /* Use a 3-byte magic number header, unless old file */
  405. int zcat_flg = 0;    /* Write output on stdout, suppress messages */
  406. int precious = 1;    /* Don't unlink output file on interrupt */
  407. int quiet = 1;        /* don't tell me about compression */
  408.  
  409. /*
  410.  * block compression parameters -- after all codes are used up,
  411.  * and compression rate changes, start over.
  412.  */
  413. int block_compress = BLOCK_MASK;
  414. int clear_flg = 0;
  415. long int ratio = 0;
  416. #define CHECK_GAP 10000 /* ratio check interval */
  417. count_int checkpoint = CHECK_GAP;
  418. /*
  419.  * the next two codes should not be changed lightly, as they must not
  420.  * lie within the contiguous general code space.
  421.  */ 
  422. #define FIRST    257    /* first free entry */
  423. #define CLEAR    256    /* table clear output code */
  424.  
  425. int force = 0;
  426. char ofname [100];
  427.           
  428. #ifdef MSDOS
  429. # define PATH_SEP '\\'
  430. int image = 2;        /* 1 <=> image (binary) mode; 2 <=> text mode */
  431. #else
  432. # define PATH_SEP '/'
  433. #endif
  434.  
  435. #ifdef DEBUG
  436. int verbose = 0;
  437. #endif /* DEBUG */
  438. int (*bgnd_flag)();
  439.  
  440. int do_decomp = 0;
  441.  
  442. /*****************************************************************
  443.  * TAG( main )
  444.  *
  445.  * Algorithm from "A Technique for High Performance Data Compression",
  446.  * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.
  447.  *
  448.  * Usage: compress [-cdfivV] [-b bits] [file ...]
  449.  * Inputs:
  450.  *
  451.  *    -c:        Write output on stdout, don't remove original.
  452.  *
  453.  *    -d:        If given, decompression is done instead.
  454.  *
  455.  *    -f:        Forces output file to be generated, even if one already
  456.  *            exists, and even if no space is saved by compressing.
  457.  *            If -f is not used, the user will be prompted if stdin is
  458.  *            a tty, otherwise, the output file will not be overwritten.
  459.  *
  460.  *    -i:        Image mode (defined only under MS-DOS).  Prevents
  461.  *            conversion between UNIX text representation (LF line
  462.  *            termination) in compressed form and MS-DOS text
  463.  *            representation (CR-LF line termination) in uncompressed
  464.  *            form.  Useful with non-text files.
  465.  *
  466.  *    -v:        Write compression statistics
  467.  *
  468.  *    -V:        Write version and compilation options.
  469.  *
  470.  *    -b:        Parameter limits the max number of bits/code.
  471.  *
  472.  *    file ...:   Files to be compressed.  If none specified, stdin
  473.  *            is used.
  474.  * Outputs:
  475.  *    file.Z:        Compressed form of file with same mode, owner, and utimes
  476.  *    or stdout   (if stdin used as input)
  477.  *
  478.  * Assumptions:
  479.  *    When filenames are given, replaces with the compressed version
  480.  *    (.Z suffix) only if the file decreases in size.
  481.  * Algorithm:
  482.  *    Modified Lempel-Ziv method (LZW).  Basically finds common
  483.  * substrings and replaces them with a variable size code.  This is
  484.  * deterministic, and can be done on the fly.  Thus, the decompression
  485.  * procedure needs no input table, but tracks the way the table was built.
  486.  */
  487.  
  488. main( argc, argv )
  489. register int argc; char **argv;
  490. {
  491.     int overwrite = 0;    /* Do not overwrite unless given -f flag */
  492.     char tempname[100];
  493.     char **filelist, **fileptr;
  494.     char *cp, *rindex(), *malloc();
  495.     struct stat statbuf;
  496.     extern onintr();
  497.  
  498. #ifdef MSDOS
  499.     char *sufp;
  500. #else
  501.     extern oops();
  502. #endif
  503.  
  504. #ifndef MSDOS
  505.     if ( (bgnd_flag = signal ( SIGINT, SIG_IGN )) != SIG_IGN ) {
  506. #endif
  507.  
  508.     signal ( SIGINT, onintr );
  509.  
  510. #ifndef MSDOS
  511.     signal ( SIGSEGV, oops );
  512.     }
  513. #endif
  514.  
  515. #ifdef COMPATIBLE
  516.     nomagic = 1;    /* Original didn't have a magic number */
  517. #endif /* COMPATIBLE */
  518.  
  519.     filelist = fileptr = (char **)(malloc(argc * sizeof(*argv)));
  520.     *filelist = NULL;
  521.  
  522.     if((cp = rindex(argv[0], PATH_SEP)) != 0) {
  523.     cp++;
  524.     } else {
  525.     cp = argv[0];
  526.     }
  527.  
  528. #ifdef MSDOS
  529.     if(strcmp(cp, "UNCOMPRE.EXE") == 0) {
  530. #else
  531.     if(strcmp(cp, "uncompress") == 0) {
  532. #endif
  533.  
  534.     do_decomp = 1;
  535.     
  536. #ifdef MSDOS
  537.     } else if(strcmp(cp, "ZCAT.EXE") == 0) {
  538. #else
  539.     } else if(strcmp(cp, "zcat") == 0) {
  540. #endif
  541.  
  542.     do_decomp = 1;
  543.     zcat_flg = 1;
  544.     }
  545.  
  546. #ifdef BSD4_2
  547.     /* 4.2BSD dependent - take it out if not */
  548.     setlinebuf( stderr );
  549. #endif /* BSD4_2 */
  550.  
  551.     /* Argument Processing
  552.      * All flags are optional.
  553.      * -D => debug
  554.      * -V => print Version; debug verbose
  555.      * -d => do_decomp
  556.      * -v => unquiet
  557.      * -f => force overwrite of output file
  558.      * -n => no header: useful to uncompress old files
  559.      * -b maxbits => maxbits.  If -b is specified, then maxbits MUST be
  560.      *        given also.
  561.      * -c => cat all output to stdout
  562.      * -C => generate output compatible with compress 2.0.
  563.      * if a string is left, must be an input filename.
  564.      */
  565.     for (argc--, argv++; argc > 0; argc--, argv++) {
  566.     if (**argv == '-') {    /* A flag argument */
  567.         while (*++(*argv)) {    /* Process all flags in this arg */
  568.         switch (**argv) {
  569. #ifdef DEBUG
  570.             case 'D':
  571.             debug = 1;
  572.             break;
  573.             case 'V':
  574.             verbose = 1;
  575.             version();
  576.             break;
  577. #else
  578.             case 'V':
  579.             version();
  580.             break;
  581. #endif /* DEBUG */
  582.  
  583. #ifdef MSDOS
  584.             case 'i':
  585.             image = 1;
  586.             break;
  587. #endif
  588.  
  589.             case 'v':
  590.             quiet = 0;
  591.             break;
  592.             case 'd':
  593.             do_decomp = 1;
  594.             break;
  595.             case 'f':
  596.             case 'F':
  597.             overwrite = 1;
  598.             force = 1;
  599.             break;
  600.             case 'n':
  601.             nomagic = 1;
  602.             break;
  603.             case 'C':
  604.             block_compress = 0;
  605.             break;
  606.             case 'b':
  607.             if (!ARGVAL()) {
  608.                 fprintf(stderr, "Missing maxbits\n");
  609.                 Usage();
  610.                 exit(1);
  611.             }
  612.             maxbits = atoi(*argv);
  613.             goto nextarg;
  614.             case 'c':
  615.             zcat_flg = 1;
  616.             break;
  617.             case 'q':
  618.             quiet = 1;
  619.             break;
  620.             default:
  621.             fprintf(stderr, "Unknown flag: '%c'; ", **argv);
  622.             Usage();
  623.             exit(1);
  624.         }
  625.         }
  626.     }
  627.     else {        /* Input file name */
  628.         *fileptr++ = *argv; /* Build input file list */
  629.         *fileptr = NULL;
  630.         /* process nextarg; */
  631.     }
  632.     nextarg: continue;
  633.     }
  634.  
  635.     if(maxbits < INIT_BITS) maxbits = INIT_BITS;
  636.     if (maxbits > BITS) maxbits = BITS;
  637.     maxmaxcode = (code_int) 1 << maxbits;
  638.  
  639.     if (*filelist != NULL) {
  640.     for (fileptr = filelist; *fileptr; fileptr++) {
  641.         exit_stat = 0;
  642.         if (do_decomp != 0) {            /* DECOMPRESSION */
  643.  
  644. #ifdef MSDOS
  645.         /* Check for .Z or XZ suffix; add one if necessary */
  646.         cp = *fileptr + strlen(*fileptr) - 2;
  647.         if ((*cp != '.' && *cp != 'X' && *cp != 'x') ||
  648.             (*(++cp) != 'Z' && *cp != 'z')) {
  649.             strcpy(tempname, *fileptr);
  650.             if ((cp=rindex(tempname,'.')) == NULL)
  651.             strcat(tempname, ".Z");
  652.             else if(*(++cp) == '\0') strcat(tempname, "Z");
  653.             else {
  654.             *(++cp) = '\0';
  655.             strcat(tempname, "XZ");
  656.             }
  657.             *fileptr = tempname;
  658.         }
  659. #else
  660.         /* Check for .Z suffix */
  661.         if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") != 0) {
  662.             /* No .Z: tack one on */
  663.             strcpy(tempname, *fileptr);
  664.             strcat(tempname, ".Z");
  665.             *fileptr = tempname;
  666.         }
  667. #endif /*MSDOS */
  668.  
  669.         /* Open input file for decompression */
  670.  
  671. #ifdef MSDOS
  672.         if ((freopen(*fileptr, "rb", stdin)) == NULL) {
  673. #else
  674.         if ((freopen(*fileptr, "r", stdin)) == NULL) {
  675. #endif
  676.  
  677.             perror(*fileptr); continue;
  678.         }
  679.         /* Check the magic number */
  680.         if (nomagic == 0) {
  681.             if ((getchar() != (magic_header[0] & 0xFF))
  682.              || (getchar() != (magic_header[1] & 0xFF))) {
  683.             fprintf(stderr, "%s: not in compressed format\n",
  684.                 *fileptr);
  685.             continue;
  686.             }
  687.             maxbits = getchar();    /* set -b from file */
  688.             block_compress = maxbits & BLOCK_MASK;
  689.             maxbits &= BIT_MASK;
  690.             maxmaxcode = (code_int) 1 << maxbits;
  691.             if(maxbits > BITS) {
  692.             fprintf(stderr,
  693.             "%s: compressed with %d bits, can only handle %d bits\n",
  694.             *fileptr, maxbits, BITS);
  695.             continue;
  696.             }
  697.         }
  698.         /* Generate output filename */
  699.         strcpy(ofname, *fileptr);
  700.         ofname[strlen(*fileptr) - 2] = '\0';  /* Strip off .Z */
  701.         } else {                    /* COMPRESSION */
  702.  
  703. #ifdef MSDOS
  704.         cp = *fileptr + strlen(*fileptr) - 2;
  705.         if ((*cp == '.' || *cp == 'X' || *cp == 'x') &&
  706.             (*(++cp) == 'Z' || *cp == 'z')) {
  707.             fprintf(stderr,"%s: already has %s suffix -- no change\n",
  708.             *fileptr,--cp);
  709. #else
  710.         if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") == 0) {
  711.             fprintf(stderr, "%s: already has .Z suffix -- no change\n",
  712.             *fileptr);
  713. #endif /* MSDOS */
  714.  
  715.             continue;
  716.         }
  717.         /* Open input file for compression */
  718.  
  719. #ifdef MSDOS
  720.         if ((freopen(*fileptr, image == 2 ? "rt" : "rb", stdin))
  721.             == NULL) {
  722. #else
  723.         if ((freopen(*fileptr, "r", stdin)) == NULL) {
  724. #endif
  725.  
  726.             perror(*fileptr); continue;
  727.         }
  728.         stat ( *fileptr, &statbuf );
  729.         fsize = (long) statbuf.st_size;
  730.         /*
  731.          * tune hash table size for small files -- ad hoc,
  732.          * but the sizes match earlier #defines, which
  733.          * serve as upper bounds on the number of output codes. 
  734.          */
  735.         hsize = HSIZE;
  736.         if ( fsize < (1 << 12) )
  737.             hsize = min ( 5003, HSIZE );
  738.         else if ( fsize < (1 << 13) )
  739.             hsize = min ( 9001, HSIZE );
  740.         else if ( fsize < (1 << 14) )
  741.             hsize = min ( 18013, HSIZE );
  742.         else if ( fsize < (1 << 15) )
  743.             hsize = min ( 35023, HSIZE );
  744.         else if ( fsize < 47000 )
  745.             hsize = min ( 50021, HSIZE );
  746.  
  747.         /* Generate output filename */
  748.         strcpy(ofname, *fileptr);
  749. #ifndef BSD4_2        /* Short filenames */
  750.         if ((cp = rindex(ofname, PATH_SEP)) != NULL) cp++;
  751.         else                    cp = ofname;
  752. # ifdef MSDOS
  753.         if (zcat_flg == 0 && (sufp = rindex(cp, '.')) != NULL &&
  754.             strlen(sufp) > 2) fprintf(stderr,
  755.             "%s: part of filename extension will be replaced by XZ\n",
  756.             cp);
  757. # else
  758.         if (strlen(cp) > 12) {
  759.             fprintf(stderr,"%s: filename too long to tack on .Z\n",cp);
  760.             continue;
  761.         }
  762. # endif
  763. #endif    /* BSD4_2        Long filenames allowed */
  764.                              
  765. #ifdef MSDOS
  766.         if ((cp = rindex(ofname, '.')) == NULL) strcat(ofname, ".Z");
  767.         else {
  768.            if(*(++cp) != '\0') *(++cp) = '\0';
  769.            strcat(ofname, "XZ");
  770.         }
  771. #else
  772.         strcat(ofname, ".Z");
  773. #endif /* MSDOS */
  774.  
  775.         }
  776.         precious = 0;
  777.         /* Check for overwrite of existing file */
  778.         if (overwrite == 0 && zcat_flg == 0) {
  779.         if (stat(ofname, &statbuf) == 0) {
  780.             char response[2];
  781.             response[0] = 'n';
  782.             fprintf(stderr, "%s already exists;", ofname);
  783. #ifndef MSDOS
  784.             if (foreground()) {
  785. #endif
  786.             fprintf(stderr,
  787.                 " do you wish to overwrite %s (y or n)? ", ofname);
  788.             fflush(stderr);
  789.             read(2, response, 2);
  790.             while (response[1] != '\n') {
  791.                 if (read(2, response+1, 1) < 0) {    /* Ack! */
  792.                 perror("stderr"); break;
  793.                 }
  794.             }
  795. #ifndef MSDOS
  796.             }
  797. #endif
  798.             if (response[0] != 'y') {
  799.             fprintf(stderr, "\tnot overwritten\n");
  800.             continue;
  801.             }
  802.         }
  803.         }
  804.         if(zcat_flg == 0) {        /* Open output file */
  805.  
  806. #ifdef MSDOS
  807.         if (freopen(ofname, do_decomp && image == 2 ? "wt" : "wb",
  808.             stdout) == NULL) {
  809. #else         
  810.         if (freopen(ofname, "w", stdout) == NULL) {
  811. #endif
  812.  
  813.             perror(ofname); continue;
  814.         }
  815.         if(!quiet)
  816.             fprintf(stderr, "%s: ", *fileptr);
  817.         }
  818.  
  819.         /* Actually do the compression/decompression */
  820.         if (do_decomp == 0) compress();
  821. #ifndef DEBUG
  822.         else            decompress();
  823. #else
  824.         else if (debug == 0)    decompress();
  825.         else            printcodes();
  826.         if (verbose)        dump_tab();
  827. #endif /* DEBUG */
  828.         if(zcat_flg == 0) {
  829.         copystat(*fileptr, ofname);    /* Copy stats */
  830.         if((exit_stat == 1) || (!quiet))
  831.             putc('\n', stderr);
  832.         }
  833.     }
  834.     } else {        /* Standard input */
  835.     if (do_decomp == 0) {
  836.         compress();
  837. #ifdef DEBUG
  838.         if(verbose)        dump_tab();
  839. #endif /* DEBUG */
  840.         if(!quiet)
  841.             putc('\n', stderr);
  842.     } else {
  843.         /* Check the magic number */
  844.         if (nomagic == 0) {
  845.         if ((getchar()!=(magic_header[0] & 0xFF))
  846.          || (getchar()!=(magic_header[1] & 0xFF))) {
  847.             fprintf(stderr, "stdin: not in compressed format\n");
  848.             exit(1);
  849.         }
  850.         maxbits = getchar();    /* set -b from file */
  851.         block_compress = maxbits & BLOCK_MASK;
  852.         maxbits &= BIT_MASK;
  853.         maxmaxcode = (code_int) 1 << maxbits;
  854.         fsize = 100000;        /* assume stdin large for USERMEM */
  855.         if(maxbits > BITS) {
  856.             fprintf(stderr,
  857.             "stdin: compressed with %d bits, can only handle %d bits\n",
  858.             maxbits, BITS);
  859.             exit(1);
  860.         }
  861.         }
  862. #ifndef DEBUG
  863.         decompress();
  864. #else
  865.         if (debug == 0)    decompress();
  866.         else        printcodes();
  867.         if (verbose)    dump_tab();
  868. #endif /* DEBUG */
  869.     }
  870.     }
  871.     exit(exit_stat);
  872. }
  873.  
  874. static int offset;
  875. long int in_count = 1;            /* length of input */
  876. long int bytes_out;            /* length of compressed output */
  877. long int out_count = 0;            /* # of codes output (for debugging) */
  878.  
  879. /*
  880.  * compress stdin to stdout
  881.  *
  882.  * Algorithm:  use open addressing double hashing (no chaining) on the 
  883.  * prefix code / next character combination.  We do a variant of Knuth's
  884.  * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  885.  * secondary probe.  Here, the modular division first probe is gives way
  886.  * to a faster exclusive-or manipulation.  Also do block compression with
  887.  * an adaptive reset, whereby the code table is cleared when the compression
  888.  * ratio decreases, but after the table fills.    The variable-length output
  889.  * codes are re-sized at this point, and a special CLEAR code is generated
  890.  * for the decompressor.  Late addition:  construct the table according to
  891.  * file size for noticeable speed improvement on small files.  Please direct
  892.  * questions about this implementation to ames!jaw.
  893.  */
  894.  
  895. compress() {
  896.     register long fcode;
  897.     register code_int i = 0;
  898.     register int c;
  899.     register code_int ent;
  900.     register code_int disp;
  901.     register code_int hsize_reg;
  902.     register int hshift;
  903.  
  904. #ifndef COMPATIBLE
  905.     if (nomagic == 0) {
  906.     putchar(magic_header[0]); putchar(magic_header[1]);
  907.     putchar((char)(maxbits | block_compress));
  908.     if(ferror(stdout))
  909.         writeerr();
  910.     }
  911. #endif /* COMPATIBLE */
  912.  
  913.     offset = 0;
  914.     bytes_out = 3;        /* includes 3-byte header mojo */
  915.     out_count = 0;
  916.     clear_flg = 0;
  917.     ratio = 0;
  918.     in_count = 1;
  919.     checkpoint = CHECK_GAP;
  920.     maxcode = MAXCODE(n_bits = INIT_BITS);
  921.     free_ent = ((block_compress) ? FIRST : 256 );
  922.  
  923.     ent = getchar ();
  924.  
  925.     hshift = 0;
  926.     for ( fcode = (long) hsize;     fcode < 65536L; fcode *= 2L )
  927.     hshift++;
  928.     hshift = 8 - hshift;        /* set hash code range bound */
  929.  
  930.     hsize_reg = hsize;
  931.     cl_hash( (count_int) hsize_reg);        /* clear hash table */
  932.  
  933. #ifdef SIGNED_COMPARE_SLOW
  934.     while ( (c = getchar()) != (unsigned) EOF ) {
  935. #else
  936.     while ( (c = getchar()) != EOF ) {
  937. #endif
  938.  
  939. #ifdef MSDOS
  940.     if (c == '\n') in_count += image; else /* include CR if text mode */
  941. #endif
  942.  
  943.     in_count++;
  944.  
  945.     fcode = (long) (((long) c << maxbits) + ent);
  946.     i = (((code_int)c << hshift) ^ ent);    /* xor hashing */
  947.  
  948.     if ( htabof (i) == fcode ) {
  949.         ent = codetabof (i);
  950.         continue;
  951.     } else if ( (long)htabof (i) < 0 )    /* empty slot */
  952.         goto nomatch;
  953.     disp = hsize_reg - i;        /* secondary hash (after G. Knott) */
  954.     if ( i == 0 )
  955.         disp = 1;
  956. probe:
  957.     if ( (i -= disp) < 0 )
  958.         i += hsize_reg;
  959.  
  960.     if ( htabof (i) == fcode ) {
  961.         ent = codetabof (i);
  962.         continue;
  963.     }
  964.     if ( (long)htabof (i) > 0 ) 
  965.         goto probe;
  966. nomatch:
  967.     output ( (code_int) ent );
  968.     out_count++;
  969.     ent = c;
  970. #ifdef SIGNED_COMPARE_SLOW
  971.     if ( (unsigned) free_ent < (unsigned) maxmaxcode) {
  972. #else
  973.     if ( free_ent < maxmaxcode ) {
  974. #endif
  975.         codetabof (i) = free_ent++; /* code -> hashtable */
  976.         htabof (i) = fcode;
  977.     }
  978.     else if ( (count_int)in_count >= checkpoint && block_compress )
  979.         cl_block ();
  980.     }
  981.     /*
  982.      * Put out the final code.
  983.      */
  984.     output( (code_int)ent );
  985.     out_count++;
  986.     output( (code_int)-1 );
  987.  
  988.     /*
  989.      * Print out stats on stderr
  990.      */
  991.     if(zcat_flg == 0 && !quiet) {
  992. #ifdef DEBUG
  993.     fprintf( stderr,
  994.         "%ld chars in, %ld codes (%ld bytes) out, compression factor: ",
  995.         in_count, out_count, bytes_out );
  996.     prratio( stderr, in_count, bytes_out );
  997.     fprintf( stderr, "\n");
  998.     fprintf( stderr, "\tCompression as in compact: " );
  999.     prratio( stderr, in_count-bytes_out, in_count );
  1000.     fprintf( stderr, "\n");
  1001.     fprintf( stderr, "\tLargest code (of last block) was %d (%d bits)\n",
  1002.         free_ent - 1, n_bits );
  1003. #else /* !DEBUG */
  1004.     fprintf( stderr, "Compression: " );
  1005.     prratio( stderr, in_count-bytes_out, in_count );
  1006. #endif /* DEBUG */
  1007.     }
  1008.     if(bytes_out > in_count)    /* exit(2) if no savings */
  1009.     exit_stat = 2;
  1010.     return;
  1011. }
  1012.  
  1013. /*****************************************************************
  1014.  * TAG( output )
  1015.  *
  1016.  * Output the given code.
  1017.  * Inputs:
  1018.  *    code:    A n_bits-bit integer.  If == -1, then EOF.  This assumes
  1019.  *        that n_bits =< (long)wordsize - 1.
  1020.  * Outputs:
  1021.  *    Outputs code to the file.
  1022.  * Assumptions:
  1023.  *    Chars are 8 bits long.
  1024.  * Algorithm:
  1025.  *    Maintain a BITS character long buffer (so that 8 codes will
  1026.  * fit in it exactly).    Use the VAX insv instruction to insert each
  1027.  * code in turn.  When the buffer fills up empty it and start over.
  1028.  */
  1029.  
  1030. static char buf[BITS];
  1031.  
  1032. #ifndef vax
  1033. char_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};
  1034. char_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
  1035. #endif /* vax */
  1036.  
  1037. output( code )
  1038. code_int  code;
  1039. {
  1040. #ifdef DEBUG
  1041.     static int col = 0;
  1042. #endif /* DEBUG */
  1043.  
  1044.     /*
  1045.      * On the VAX, it is important to have the register declarations
  1046.      * in exactly the order given, or the asm will break.
  1047.      */
  1048.     register int r_off = offset, bits= n_bits;
  1049.     register char * bp = buf;
  1050.  
  1051. #ifdef DEBUG
  1052.     if ( verbose )
  1053.         fprintf( stderr, "%5d%c", code,
  1054.             (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  1055. #endif /* DEBUG */
  1056.     if ( code >= 0 ) {
  1057. #ifdef vax
  1058.     /* VAX DEPENDENT!! Implementation on other machines is below.
  1059.      *
  1060.      * Translation: Insert BITS bits from the argument starting at
  1061.      * offset bits from the beginning of buf.
  1062.      */
  1063.     0;    /* Work around for pcc -O bug with asm and if stmt */
  1064.     asm( "insv    4(ap),r11,r10,(r9)" );
  1065. #else /* not a vax */
  1066. /* 
  1067.  * byte/bit numbering on the VAX is simulated by the following code
  1068.  */
  1069.     /*
  1070.      * Get to the first byte.
  1071.      */
  1072.     bp += (r_off >> 3);
  1073.     r_off &= 7;
  1074.     /*
  1075.      * Since code is always >= 8 bits, only need to mask the first
  1076.      * hunk on the left.
  1077.      */
  1078.     *bp = (*bp & rmask[r_off]) | (code << r_off) & lmask[r_off];
  1079.     bp++;
  1080.     bits -= (8 - r_off);
  1081.     code >>= 8 - r_off;
  1082.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1083.     if ( bits >= 8 ) {
  1084.         *bp++ = code;
  1085.         code >>= 8;
  1086.         bits -= 8;
  1087.     }
  1088.     /* Last bits. */
  1089.     if(bits)
  1090.         *bp = code;
  1091. #endif /* vax */
  1092.     offset += n_bits;
  1093.     if ( offset == (n_bits << 3) ) {
  1094.         bp = buf;
  1095.         bits = n_bits;
  1096.         bytes_out += bits;
  1097.         do
  1098.         putchar(*bp++);
  1099.         while(--bits);
  1100.         offset = 0;
  1101.     }
  1102.  
  1103.     /*
  1104.      * If the next entry is going to be too big for the code size,
  1105.      * then increase it, if possible.
  1106.      */
  1107.     if ( free_ent > maxcode || (clear_flg > 0))
  1108.     {
  1109.         /*
  1110.          * Write the whole buffer, because the input side won't
  1111.          * discover the size increase until after it has read it.
  1112.          */
  1113.         if ( offset > 0 ) {
  1114.         if( fwrite( buf, 1, n_bits, stdout ) != n_bits)
  1115.             writeerr();
  1116.         bytes_out += n_bits;
  1117.         }
  1118.         offset = 0;
  1119.  
  1120.         if ( clear_flg ) {
  1121.         maxcode = MAXCODE (n_bits = INIT_BITS);
  1122.         clear_flg = 0;
  1123.         }
  1124.         else {
  1125.         n_bits++;
  1126.         if ( n_bits == maxbits )
  1127.             maxcode = maxmaxcode;
  1128.         else
  1129.             maxcode = MAXCODE(n_bits);
  1130.         }
  1131. #ifdef DEBUG
  1132.         if ( debug ) {
  1133.         fprintf( stderr, "\nChange to %d bits\n", n_bits );
  1134.         col = 0;
  1135.         }
  1136. #endif /* DEBUG */
  1137.     }
  1138.     } else {
  1139.     /*
  1140.      * At EOF, write the rest of the buffer.
  1141.      */
  1142.     if ( offset > 0 )
  1143.         fwrite( buf, 1, (offset + 7) / 8, stdout );
  1144.     bytes_out += (offset + 7) / 8;
  1145.     offset = 0;
  1146.     fflush( stdout );
  1147. #ifdef DEBUG
  1148.     if ( verbose )
  1149.         fprintf( stderr, "\n" );
  1150. #endif /* DEBUG */
  1151.     if( ferror( stdout ) )
  1152.         writeerr();
  1153.     }
  1154. }
  1155.  
  1156. /*
  1157.  * Decompress stdin to stdout.    This routine adapts to the codes in the
  1158.  * file building the "string" table on-the-fly; requiring no table to
  1159.  * be stored in the compressed file.  The tables used herein are shared
  1160.  * with those of the compress() routine.  See the definitions above.
  1161.  */
  1162.  
  1163. decompress() {
  1164.  
  1165. #ifdef BIG
  1166.     register char_type far *stackp;
  1167. #else
  1168.     register char_type *stackp;
  1169. #endif
  1170.  
  1171.     register int finchar;
  1172.     register code_int code, oldcode, incode;
  1173.  
  1174.     /*
  1175.      * As above, initialize the first 256 entries in the table.
  1176.      */
  1177.     maxcode = MAXCODE(n_bits = INIT_BITS);
  1178.     for ( code = 255; code >= 0; code-- ) {
  1179.     tab_prefixof(code) = 0;
  1180.     tab_suffixof(code) = (char_type)code;
  1181.     }
  1182.     free_ent = ((block_compress) ? FIRST : 256 );
  1183.  
  1184.     finchar = oldcode = getcode();
  1185.     if(oldcode == -1)    /* EOF already? */
  1186.     return;            /* Get out of here */
  1187.     putchar( (char)finchar );        /* first code must be 8 bits = char */
  1188.     if(ferror(stdout))        /* Crash if can't write */
  1189.     writeerr();
  1190.     stackp = de_stack;
  1191.  
  1192.     while ( (code = getcode()) > -1 ) {
  1193.  
  1194.     if ( (code == CLEAR) && block_compress ) {
  1195.         for ( code = 255; code >= 0; code-- )
  1196.         tab_prefixof(code) = 0;
  1197.         clear_flg = 1;
  1198.         free_ent = FIRST - 1;
  1199.         if ( (code = getcode ()) == -1 )    /* O, untimely death! */
  1200.         break;
  1201.     }
  1202.     incode = code;
  1203.     /*
  1204.      * Special case for KwKwK string.
  1205.      */
  1206.     if ( code >= free_ent ) {
  1207.         *stackp++ = finchar;
  1208.         code = oldcode;
  1209.     }
  1210.  
  1211.     /*
  1212.      * Generate output characters in reverse order
  1213.      */
  1214. #ifdef SIGNED_COMPARE_SLOW
  1215.     while ( ((unsigned long)code) >= ((unsigned long)256) ) {
  1216. #else
  1217.     while ( code >= 256 ) {
  1218. #endif
  1219.         *stackp++ = tab_suffixof(code);
  1220.         code = tab_prefixof(code);
  1221.     }
  1222.     *stackp++ = finchar = tab_suffixof(code);
  1223.  
  1224.     /*
  1225.      * And put them out in forward order
  1226.      */
  1227.     do
  1228.         putchar ( *--stackp );
  1229.     while ( stackp > de_stack );
  1230.  
  1231.     /*
  1232.      * Generate the new entry.
  1233.      */
  1234.     if ( (code=free_ent) < maxmaxcode ) {
  1235.         tab_prefixof(code) = (unsigned short)oldcode;
  1236.         tab_suffixof(code) = finchar;
  1237.         free_ent = code+1;
  1238.     } 
  1239.     /*
  1240.      * Remember previous code.
  1241.      */
  1242.     oldcode = incode;
  1243.     }
  1244.     fflush( stdout );
  1245.     if(ferror(stdout))
  1246.     writeerr();
  1247. }
  1248.  
  1249. /*****************************************************************
  1250.  * TAG( getcode )
  1251.  *
  1252.  * Read one code from the standard input.  If EOF, return -1.
  1253.  * Inputs:
  1254.  *    stdin
  1255.  * Outputs:
  1256.  *    code or -1 is returned.
  1257.  */
  1258.  
  1259. code_int
  1260. getcode() {
  1261.     /*
  1262.      * On the VAX, it is important to have the register declarations
  1263.      * in exactly the order given, or the asm will break.
  1264.      */
  1265.     register code_int code;
  1266.     static int offset = 0, size = 0;
  1267.     static char_type buf[BITS];
  1268.     register int r_off, bits;
  1269.     register char_type *bp = buf;
  1270.  
  1271.     if ( clear_flg > 0 || offset >= size || free_ent > maxcode ) {
  1272.     /*
  1273.      * If the next entry will be too big for the current code
  1274.      * size, then we must increase the size.  This implies reading
  1275.      * a new buffer full, too.
  1276.      */
  1277.     if ( free_ent > maxcode ) {
  1278.         n_bits++;
  1279.         if ( n_bits == maxbits )
  1280.         maxcode = maxmaxcode;    /* won't get any bigger now */
  1281.         else
  1282.         maxcode = MAXCODE(n_bits);
  1283.     }
  1284.     if ( clear_flg > 0) {
  1285.         maxcode = MAXCODE (n_bits = INIT_BITS);
  1286.         clear_flg = 0;
  1287.     }
  1288.     size = fread( buf, 1, n_bits, stdin );
  1289.     if ( size <= 0 )
  1290.         return -1;            /* end of file */
  1291.     offset = 0;
  1292.     /* Round size down to integral number of codes */
  1293.     size = (size << 3) - (n_bits - 1);
  1294.     }
  1295.     r_off = offset;
  1296.     bits = n_bits;
  1297. #ifdef vax
  1298.     asm( "extzv      r10,r9,(r8),r11" );
  1299. #else /* not a vax */
  1300.     /*
  1301.      * Get to the first byte.
  1302.      */
  1303.     bp += (r_off >> 3);
  1304.     r_off &= 7;
  1305.     /* Get first part (low order bits) */
  1306. #ifdef NO_UCHAR
  1307.     code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
  1308. #else
  1309.     code = (*bp++ >> r_off);
  1310. #endif /* NO_UCHAR */
  1311.     bits -= (8 - r_off);
  1312.     r_off = 8 - r_off;        /* now, offset into code word */
  1313.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1314.     if ( bits >= 8 ) {
  1315. #ifdef NO_UCHAR
  1316.         code |= (*bp++ & 0xff) << r_off;
  1317. #else
  1318.         code |= *bp++ << r_off;
  1319. #endif /* NO_UCHAR */
  1320.         r_off += 8;
  1321.         bits -= 8;
  1322.     }
  1323.     /* high order bits. */
  1324.     code |= (*bp & rmask[bits]) << r_off;
  1325. #endif /* vax */
  1326.     offset += n_bits;
  1327.  
  1328.     return code;
  1329. }
  1330.  
  1331. char *
  1332. rindex(s, c)        /* For those who don't have it in libc.a */
  1333. register char *s, c;
  1334. {
  1335.     char *p;
  1336.     for (p = NULL; *s; s++)
  1337.         if (*s == c)
  1338.         p = s;
  1339.     return(p);
  1340. }
  1341.  
  1342. #ifdef DEBUG
  1343. printcodes()
  1344. {
  1345.     /*
  1346.      * Just print out codes from input file.  For debugging.
  1347.      */
  1348.     code_int code;
  1349.     int col = 0, bits;
  1350.  
  1351.     bits = n_bits = INIT_BITS;
  1352.     maxcode = MAXCODE(n_bits);
  1353.     free_ent = ((block_compress) ? FIRST : 256 );
  1354.     while ( ( code = getcode() ) >= 0 ) {
  1355.     if ( (code == CLEAR) && block_compress ) {
  1356.         free_ent = FIRST - 1;
  1357.         clear_flg = 1;
  1358.     }
  1359.     else if ( free_ent < maxmaxcode )
  1360.         free_ent++;
  1361.     if ( bits != n_bits ) {
  1362.         fprintf(stderr, "\nChange to %d bits\n", n_bits );
  1363.         bits = n_bits;
  1364.         col = 0;
  1365.     }
  1366.     fprintf(stderr, "%5d%c", code, (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  1367.     }
  1368.     putc( '\n', stderr );
  1369.     exit( 0 );
  1370. }
  1371.  
  1372. code_int sorttab[1<<BITS];    /* sorted pointers into htab */
  1373.  
  1374. dump_tab()    /* dump string table */
  1375. {
  1376.     register int i, first;
  1377.     register ent;
  1378. #define STACK_SIZE    15000
  1379.     int stack_top = STACK_SIZE;
  1380.     register c;
  1381.  
  1382.     if(do_decomp == 0) {    /* compressing */
  1383.     register int flag = 1;
  1384.  
  1385.     for(i=0; i<hsize; i++) {    /* build sort pointers */
  1386.         if((long)htabof(i) >= 0) {
  1387.             sorttab[codetabof(i)] = i;
  1388.         }
  1389.     }
  1390.     first = block_compress ? FIRST : 256;
  1391.     for(i = first; i < free_ent; i++) {
  1392.         fprintf(stderr, "%5d: \"", i);
  1393.         de_stack[--stack_top] = '\n';
  1394.         de_stack[--stack_top] = '"';
  1395.         stack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff, 
  1396.                      stack_top);
  1397.         for(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);
  1398.             ent > 256;
  1399.             ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
  1400.             stack_top = in_stack(htabof(sorttab[ent]) >> maxbits,
  1401.                         stack_top);
  1402.         }
  1403.         stack_top = in_stack(ent, stack_top);
  1404.         fwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);
  1405.         stack_top = STACK_SIZE;
  1406.     }
  1407.    } else if(!debug) {    /* decompressing */
  1408.  
  1409.        for ( i = 0; i < free_ent; i++ ) {
  1410.        ent = i;
  1411.        c = tab_suffixof(ent);
  1412.        if ( isascii(c) && isprint(c) )
  1413.            fprintf( stderr, "%5d: %5d/'%c'    \"",
  1414.                ent, tab_prefixof(ent), c );
  1415.        else
  1416.            fprintf( stderr, "%5d: %5d/\\%03o \"",
  1417.                ent, tab_prefixof(ent), c );
  1418.        de_stack[--stack_top] = '\n';
  1419.        de_stack[--stack_top] = '"';
  1420.        for ( ; ent != NULL;
  1421.            ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {
  1422.            stack_top = in_stack(tab_suffixof(ent), stack_top);
  1423.        }
  1424.        fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );
  1425.        stack_top = STACK_SIZE;
  1426.        }
  1427.     }
  1428. }
  1429.  
  1430. int
  1431. in_stack(c, stack_top)
  1432.     register c, stack_top;
  1433. {
  1434.     if ( (isascii(c) && isprint(c) && c != '\\') || c == ' ' ) {
  1435.         de_stack[--stack_top] = c;
  1436.     } else {
  1437.         switch( c ) {
  1438.         case '\n': de_stack[--stack_top] = 'n'; break;
  1439.         case '\t': de_stack[--stack_top] = 't'; break;
  1440.         case '\b': de_stack[--stack_top] = 'b'; break;
  1441.         case '\f': de_stack[--stack_top] = 'f'; break;
  1442.         case '\r': de_stack[--stack_top] = 'r'; break;
  1443.         case '\\': de_stack[--stack_top] = '\\'; break;
  1444.         default:
  1445.         de_stack[--stack_top] = '0' + c % 8;
  1446.         de_stack[--stack_top] = '0' + (c / 8) % 8;
  1447.         de_stack[--stack_top] = '0' + c / 64;
  1448.         break;
  1449.         }
  1450.         de_stack[--stack_top] = '\\';
  1451.     }
  1452.     return stack_top;
  1453. }
  1454. #endif /* DEBUG */
  1455.  
  1456. writeerr()
  1457. {
  1458.     perror ( ofname );
  1459.     unlink ( ofname );
  1460.     exit ( 1 );
  1461. }
  1462.  
  1463. copystat(ifname, ofname)
  1464. char *ifname, *ofname;
  1465. {
  1466.     struct stat statbuf;
  1467.     int mode;
  1468.     time_t timep[2];
  1469.  
  1470. #ifdef MSDOS
  1471.     if (_osmajor < 3) freopen("CON","at",stdout); else      /* MS-DOS 2.xx bug */
  1472. #endif
  1473.  
  1474.     fclose(stdout);
  1475.     if (stat(ifname, &statbuf)) {        /* Get stat on input file */
  1476.     perror(ifname);
  1477.     return;
  1478.     }
  1479.  
  1480. #ifndef MSDOS
  1481.     if ((statbuf.st_mode & S_IFMT/*0170000*/) != S_IFREG/*0100000*/) {
  1482.     if(quiet)
  1483.         fprintf(stderr, "%s: ", ifname);
  1484.     fprintf(stderr, " -- not a regular file: unchanged");
  1485.     exit_stat = 1;
  1486.     } else if (statbuf.st_nlink > 1) {
  1487.     if(quiet)
  1488.         fprintf(stderr, "%s: ", ifname);
  1489.     fprintf(stderr, " -- has %d other links: unchanged",
  1490.         statbuf.st_nlink - 1);
  1491.     exit_stat = 1;
  1492.     } else if (exit_stat == 2 && (!force)) { /* No compression: remove file.Z */
  1493. #else
  1494.     if (exit_stat == 2 && (!force)) { /* No compression: remove file.Z */
  1495. #endif /* MSDOS */
  1496.  
  1497.     if(!quiet)
  1498.         fprintf(stderr, " -- file unchanged");
  1499.     } else {            /* ***** Successful Compression ***** */
  1500.     exit_stat = 0;
  1501.     mode = statbuf.st_mode & 07777;
  1502.     if (chmod(ofname, mode))        /* Copy modes */
  1503.         perror(ofname);
  1504.  
  1505. #ifndef MSDOS
  1506.     chown(ofname, statbuf.st_uid, statbuf.st_gid);    /* Copy ownership */
  1507. #endif
  1508.  
  1509.     timep[0] = statbuf.st_atime;
  1510.     timep[1] = statbuf.st_mtime;
  1511.     utime(ofname, timep);    /* Update last accessed and modified times */
  1512.     precious = 1;
  1513.     if (unlink(ifname))    /* Remove input file */
  1514.         perror(ifname);
  1515.     if(!quiet)
  1516.         fprintf(stderr, " -- replaced with %s", ofname);
  1517.     return;        /* Successful return */
  1518.     }
  1519.  
  1520.     /* Unsuccessful return -- one of the tests failed */
  1521.     if (unlink(ofname))
  1522.     perror(ofname);
  1523. }
  1524.  
  1525. #ifndef MSDOS
  1526. /*
  1527.  * This routine returns 1 if we are running in the foreground and stderr
  1528.  * is a tty.
  1529.  */
  1530. foreground()
  1531. {
  1532.     if(bgnd_flag != SIG_DFL) { /* background? */
  1533.         return(0);
  1534.     } else {            /* foreground */
  1535.         if(isatty(2)) {        /* and stderr is a tty */
  1536.             return(1);
  1537.         } else {
  1538.             return(0);
  1539.         }
  1540.     }
  1541. }
  1542. #endif
  1543.  
  1544. onintr ( )
  1545. {
  1546.     if (!precious)
  1547.     unlink ( ofname );
  1548.     exit ( 1 );
  1549. }
  1550.  
  1551. #ifndef MSDOS
  1552. oops ( )    /* wild pointer -- assume bad input */
  1553. {
  1554.     if ( do_decomp == 1 ) 
  1555.     fprintf ( stderr, "uncompress: corrupt input\n" );
  1556.     unlink ( ofname );
  1557.     exit ( 1 );
  1558. }
  1559. #endif /* MSDOS */
  1560.  
  1561. cl_block ()        /* table clear for block compress */
  1562. {
  1563.     register long int rat;
  1564.  
  1565.     checkpoint = in_count + CHECK_GAP;
  1566. #ifdef DEBUG
  1567.     if ( debug ) {
  1568.         fprintf ( stderr, "count: %ld, ratio: ", in_count );
  1569.         prratio ( stderr, in_count, bytes_out );
  1570.         fprintf ( stderr, "\n");
  1571.     }
  1572. #endif /* DEBUG */
  1573.  
  1574.     if(in_count > 0x007fffff) { /* shift will overflow */
  1575.     rat = bytes_out >> 8;
  1576.     if(rat == 0) {        /* Don't divide by zero */
  1577.         rat = 0x7fffffff;
  1578.     } else {
  1579.         rat = in_count / rat;
  1580.     }
  1581.     } else {
  1582.     rat = (in_count << 8) / bytes_out;    /* 8 fractional bits */
  1583.     }
  1584.     if ( rat > ratio ) {
  1585.     ratio = rat;
  1586.     } else {
  1587.     ratio = 0;
  1588. #ifdef DEBUG
  1589.     if(verbose)
  1590.         dump_tab();    /* dump string table */
  1591. #endif
  1592.     cl_hash ( (count_int) hsize );
  1593.     free_ent = FIRST;
  1594.     clear_flg = 1;
  1595.     output ( (code_int) CLEAR );
  1596. #ifdef DEBUG
  1597.     if(debug)
  1598.         fprintf ( stderr, "clear\n" );
  1599. #endif /* DEBUG */
  1600.     }
  1601. }
  1602.  
  1603. cl_hash(hsize)        /* reset code table */
  1604.     register count_int hsize;
  1605. {
  1606.  
  1607. #ifdef XENIX_16
  1608.     register j;
  1609.     register long k = hsize;
  1610.      
  1611. # ifdef MSDOS
  1612.     register count_int far *htab_p;
  1613. # else
  1614.     register count_int *htab_p;
  1615. # endif /* MSDOS */
  1616.  
  1617. #else    /* Normal machine */
  1618.     register count_int *htab_p = htab+hsize;
  1619. #endif    /* XENIX_16 */
  1620.  
  1621.     register long i;
  1622.     register long m1 = -1;
  1623.  
  1624. #ifdef XENIX_16
  1625.     for(j=0; j<=8 && k>=0; j++,k-=8192) {
  1626.     i = 8192;
  1627.     if(k < 8192) {
  1628.         i = k;
  1629.     }
  1630.     htab_p = &(htab[j][i]);
  1631.     i -= 16;
  1632.     if(i > 0) {
  1633. #else
  1634.     i = hsize - 16;
  1635. #endif
  1636.     do {                /* might use Sys V memset(3) here */
  1637.         *(htab_p-16) = m1;
  1638.         *(htab_p-15) = m1;
  1639.         *(htab_p-14) = m1;
  1640.         *(htab_p-13) = m1;
  1641.         *(htab_p-12) = m1;
  1642.         *(htab_p-11) = m1;
  1643.         *(htab_p-10) = m1;
  1644.         *(htab_p-9) = m1;
  1645.         *(htab_p-8) = m1;
  1646.         *(htab_p-7) = m1;
  1647.         *(htab_p-6) = m1;
  1648.         *(htab_p-5) = m1;
  1649.         *(htab_p-4) = m1;
  1650.         *(htab_p-3) = m1;
  1651.         *(htab_p-2) = m1;
  1652.         *(htab_p-1) = m1;
  1653.         htab_p -= 16;
  1654.     } while ((i -= 16) >= 0);
  1655. #ifdef XENIX_16
  1656.     }
  1657.     }
  1658. #endif
  1659.     for ( i += 16; i > 0; i-- )
  1660.         *--htab_p = m1;
  1661. }
  1662.  
  1663. prratio(stream, num, den)
  1664. FILE *stream;
  1665. long int num, den;
  1666. {
  1667.  
  1668. #ifdef DEBUG
  1669.     register long q;        /* permits |result| > 655.36% */
  1670. #else
  1671.     register int q;            /* Doesn't need to be long */
  1672. #endif
  1673.  
  1674.     if(num > 214748L) {        /* 2147483647/10000 */
  1675.         q = num / (den / 10000L);
  1676.     } else {
  1677.         q = 10000L * num / den;        /* Long calculations, though */
  1678.     }
  1679.     if (q < 0) {
  1680.         putc('-', stream);
  1681.         q = -q;
  1682.     }
  1683.     fprintf(stream, "%d.%02d%%", (int)(q / 100), (int)(q % 100));
  1684. }
  1685.  
  1686. version()
  1687. {
  1688.     fprintf(stderr, "%s\n", rcs_ident);
  1689.     fprintf(stderr, "Options: ");
  1690. #ifdef vax
  1691.     fprintf(stderr, "vax, ");
  1692. #endif
  1693. #ifdef NO_UCHAR
  1694.     fprintf(stderr, "NO_UCHAR, ");
  1695. #endif
  1696. #ifdef SIGNED_COMPARE_SLOW
  1697.     fprintf(stderr, "SIGNED_COMPARE_SLOW, ");
  1698. #endif
  1699. #ifdef MSDOS
  1700.     fprintf(stderr, "MSDOS, ");
  1701. #endif
  1702. #ifdef XENIX_16
  1703.     fprintf(stderr, "XENIX_16, ");
  1704. #endif
  1705. #ifdef COMPATIBLE
  1706.     fprintf(stderr, "COMPATIBLE, ");
  1707. #endif
  1708. #ifdef DEBUG
  1709.     fprintf(stderr, "DEBUG, ");
  1710. #endif
  1711. #ifdef BSD4_2
  1712.     fprintf(stderr, "BSD4_2, ");
  1713. #endif
  1714.     fprintf(stderr, "BITS = %d\n", BITS);
  1715. }
  1716.